home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00052_user.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  1.0 KB  |  37 lines

  1. on keyUp
  2.   set cr to numToChar(13)
  3.   if the key = cr then
  4.     select()
  5.   end if
  6. end
  7.  
  8. on select
  9.   global gHFsearchcastmember
  10.   duplicate(cast 11, cast 64)
  11.   set the name of cast 64 to "user2"
  12.   set the text of cast 64 to EMPTY
  13.   set key to the text of cast 52
  14.   if charToNum(key) > 64 then
  15.     set gHFsearchcastmember to 64
  16.     set the castNum of sprite 34 to cast 64
  17.     set key to char 1 to length(key) - 1 of key
  18.     put "length of key " & length(key)
  19.     set vName to "athletelistbck"
  20.     set the itemDelimiter to numToChar(13)
  21.     set vNum to the number of cast vName
  22.     set vlines to the number of lines in field vNum
  23.     repeat with vcounter = 1 to vlines
  24.       if item vcounter of field vNum contains key then
  25.         put item vcounter of field vNum & numToChar(13) after field "user2"
  26.       end if
  27.     end repeat
  28.     put "end of select script"
  29.     puppetSprite(34, 1)
  30.     set the castNum of sprite 34 to cast "user2"
  31.     updateStage()
  32.   end if
  33.   set the text of cast 52 to EMPTY
  34.   set key to EMPTY
  35.   put "the end of the select script"
  36. end
  37.